home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / awe2-0_1.lha / awe2-0.1 / Src / ReserveByException.cc < prev    next >
C/C++ Source or Header  |  1990-07-09  |  608b  |  26 lines

  1. // This may look like C code, but it is really -*- C++ -*-
  2. // 
  3. // Copyright (C) 1988 University of Illinois, Urbana, Illinois
  4. // Copyright (C) 1989 University of Colorado, Boulder, Colorado
  5. // Copyright (C) 1990 University of Colorado, Boulder, Colorado
  6. //
  7. // written by Dirk Grunwald (grunwald@foobar.colorado.edu)
  8. //
  9. #include "ReserveByException.h"
  10. #include "assert.h"
  11.  
  12. int
  13. ReserveByException::reserveByException(Thread *)
  14. {
  15.     assert( SubClassResponsibility );
  16.     return( 0 );
  17. }
  18.  
  19. #ifdef UNDEF
  20. void
  21. ReserveByException::classPrintOn(ostream& out)
  22. {
  23.     out << "[ReserveByException]";
  24. }
  25. #endif /* UNDEF */
  26.